home *** CD-ROM | disk | FTP | other *** search
/ Virtual Vibrations / Virtual Vibrations.iso / mac / Virtual Vibrations / STAR.DXR / 00034.ls < prev    next >
Encoding:
Text File  |  1994-10-28  |  285 b   |  24 lines

  1. on enterFrame
  2.   puppetPalette("movie menu palette")
  3.   updateStage()
  4. end
  5.  
  6. on mouseDown
  7.   puppetSound("click")
  8. end
  9.  
  10. on mouseUp
  11.   global voice
  12.   set voice to 0
  13.   if soundBusy(2) then
  14.     sound stop 2
  15.   end if
  16.   go("showMovie")
  17. end
  18.  
  19. on exitFrame
  20.   global fixpal
  21.   patchpal()
  22.   pause()
  23. end
  24.